home *** CD-ROM | disk | FTP | other *** search
-
- #import <appkit/Cell.h>
-
- typedef enum _SuccessType_t {
- NOT_DECODED,
- DECODE_SUCCESSFUL,
- DECODE_FAILED
- } SuccessType_t;
-
-
- @interface DecodeCell : Cell
- {
- int articleIndex;
- SuccessType_t decodeStatus;
- }
-
- + (void) initialize;
-
- - init;
-
- - (int) articleIndex;
- - (void) setArticleIndex:(int)index;
-
- - (SuccessType_t) decodeStatus;
- - (void) setDecodeStatus:(SuccessType_t)status;
-
- - drawSelf:(const NXRect *)frameRect inView:controlView;
-
- @end
-
-
-